Intakes Derived Type

type, public :: Intakes


Components

Type Visibility Attributes Name Initial
integer(kind=short), public :: count

number of intakes

type(Intake), public, ALLOCATABLE :: elem(:)

Source Code

TYPE Intakes
   INTEGER (KIND = short) :: count !!number of intakes
   TYPE (Intake), ALLOCATABLE :: elem (:)
END TYPE Intakes